home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / Perl Mode / perl4.tcl next >
Encoding:
Text File  |  1998-05-29  |  4.6 KB  |  140 lines  |  [TEXT/ALFA]

  1. proc perl4.tcl {} {}
  2.  
  3. if {![info exists perlDocs]} {
  4.     set perlDocs [file join $HOME Help "Perl Commands"]
  5. }
  6.  
  7. ##############################################################################
  8. # Colorization setup
  9. #
  10. # Keywords are separated here according to their location in "Perl Commands",
  11. # for the convenience of the cmd-double-click mechanism.
  12. #
  13. # Expression words are described in the "Compound Statements" section
  14. #
  15. set perlExprWords {  
  16. else elsif for foreach if return unless until while eq ne cmp lt gt le ge
  17. }
  18.  
  19. # Special variables are described in their own section (and are not 
  20. # individually marked, so we have to search for them.)
  21. #
  22. # This group can safely be colorized...
  23. #
  24. set perlNameWords {
  25. @_ $_ $.  $/ $, $" $\\ $\# $% $= $- $~ $^ $| $$ $? $& $` $' $+ $* 
  26. $0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $[ $] $; $! $@ $< $> $( $) $:
  27. }
  28.  
  29. #... while this group is forced lower-case by the current colorization scheme
  30. #
  31. set perlSpecialVars [concat $perlNameWords {
  32. $^D $^F $^I $^P $^T $^W $^X 
  33. $ARGV @ARGV @INC %INC @INC %ENV $SIG $ENV %SIG
  34. }]
  35.  
  36. # Perl operators and functions are indexed via the Marks menu
  37. #
  38. set perlKeyWords {
  39.     accept alarm atan2 Bind binmode caller chdir chmod chop chown chroot 
  40.     close closedir connect continue cos crypt dbmclose dbmopen defined 
  41.     delete die do dump each   eof eval exec exit exp fcntl fileno 
  42.     flock  fork getc getlogin getpeername getpgrp getppid 
  43.     getpriority getgrnam gethostbyname getnetbyname getprotobyname getpwuid 
  44.     getgrgid getservbyname gethostbyaddr getnetbyaddr getprotobynumber 
  45.     getservbyport getpwent getgrent gethostent getnetent getprotoent 
  46.     getservent setpwent setgrent sethostent setnetent setprotoent setservent 
  47.     endpwent endgrent endhostent endnetent endprotoent endservent 
  48.     getsockname getsockopt gmtime goto grep hex  index int ioctl join keys 
  49.     kill last  length link listen local localtime log lstat lstat mkdir 
  50.     msgctl msgget msgsnd msgrcv next oct open opendir ord pack pipe pop 
  51.     print  printf  push q qq qx rand read readdir readlink recv redo
  52.      rename require reset  reverse rewinddir rindex rindex rmdir 
  53.     scalar seek seekdir select semctl semget semop send setpgrp setpriority 
  54.     setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep 
  55.     socket socketpair sort splice split sprintf sqrt srand stat study sub 
  56.     substr symlink syscall sysread system syswrite tell telldir time times 
  57.     tr truncate umask undef  unlink unpack unshift  utime values 
  58.     vec wait waitpid wantarray warn  write 
  59. }
  60. set perlWords [concat $perlKeyWords $perlNameWords $perlExprWords]
  61. regModeKeywords -e {#} -c red -k blue -s [set PerlmodeVars(stringColor)] Perl  $perlWords
  62. unset perlWords
  63.  
  64. ##############################################################################
  65. # Cmd-double-click support for Perl mode. 
  66. proc Perl::DblClick {from to} {
  67.     global HOME perlKeyWords perlSpecialVars perlExprWords
  68.     global perlSearchPath
  69.     
  70.     set pc  [lookAt [expr $from - 1]]
  71.     set ppc [lookAt [expr $from - 2]]
  72.     set tc  [lookAt $to]
  73.     
  74.     # Extend selection to include special characters
  75.     #
  76.     if {$pc == {$}} { 
  77.         if {$from == $to} { incr to }
  78.         incr from -1
  79.         if {$tc == {^}} { incr to }
  80.         
  81.     } elseif {$pc == {^} && $ppc == {$}} {
  82.         incr from -2
  83.         
  84.     } elseif {$pc == {%} || $pc == {@}} {
  85.         incr from -1
  86.     }
  87.     
  88.     # Return if there's no selected text
  89.     if {$to > $from} {
  90.         select $from $to
  91.         set text [getSelect]
  92.         set qtext [quote::Regfind $text]
  93.     } else {
  94.         return
  95.     }
  96.  
  97.     set perlSearchPath {}
  98.     
  99.     # Function call
  100.     if {$pc == "&"} {
  101.          if {![catch {search -f 1 -r 1 -m 0 -s "sub *$qtext *\{" 0} mtch]} {
  102.              pushPosition
  103.              eval select $mtch
  104.              message "Use Ctl-. to return to original position"
  105.          } else {
  106.              message {Sub definition not found}
  107.          }
  108.  
  109.     # Look up keywords in the man page by their file marks
  110.     } elseif {[lsearch -exact $perlKeyWords $text] >= 0} {
  111.         editMark [file join $HOME Help "Perl Commands"] $text
  112.  
  113.     # Special vars aren't marked, so search for their definitions
  114.     } elseif {[lsearch -exact $perlSpecialVars $text] >= 0} {
  115.         if {[lsearch -exact [winNames] "Perl Commands"] >= 0} {
  116.             bringToFront "Perl Commands"
  117.         } else {
  118.             edit [file join $HOME Help "Perl Commands"]
  119.         }
  120.         if {![catch {search -f 0 -r 0 -m 0 -i 0 -s "     $text  " [maxPos]} mtch]} {
  121.             goto [lindex $mtch 0]
  122.         }
  123.  
  124.     # Flow control statements don't have separate entries
  125.     } elseif {[lsearch -exact $perlExprWords $text] >= 0} {
  126.         editMark [file join $HOME Help "Perl Commands"] "Compound statements"
  127.     
  128.     # If user clicked the arg of a 'require' command, open the file
  129.     } elseif {![catch {perlFindRequire $from $to} filename]} {
  130.         openPerlFile $filename
  131.  
  132.     # Other
  133.     } else {
  134.         select $from $to
  135.         message {Command-double-click on keywords, special vars, and req'd filenames}
  136.     }
  137.  
  138. }
  139.